home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / ptrp25dm.zip / TEST18.TRP < prev    next >
Text File  |  1995-01-17  |  264b  |  13 lines

  1. procedure main
  2.         test("Test");
  3.         beep;
  4.         message('Helloha');
  5. endProc
  6.  
  7. external procedure Beep; module "DynaTest.DLL"
  8. external procedure Message(p : PChar); module "DynaTest.DLL"
  9.  
  10. procedure test(p : PChar);
  11.         writeln(p);
  12. endproc
  13.